MenuInkey$ FUNCTION Action Performs a BASIC INKEY$ procedure, as well as both a MenuEvent procedure and a ShortCutKeyEvent procedure, returning a string. Syntax variablename$ = MenuInkey$ Remarks The MenuInkey$ procedure operates exactly like the standard BASIC INKEY$ procedure, but additionally performs MenuEvent and ShortCutKeyEvent procedures. If either a menu event or a shortcut-key event occurs, MenuInkey$ returns the word "menu" instead of the normally expected INKEY$ value. When MenuInkey$ returns the word "menu," use MenuCheck to determine which menu and menu item was selected. See Also. MenuDo, MenuEvent, ShortCutKeyEvent Example See the main loop in the code example UIDEMO.BAS for a specific implementation.